home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 - Homepage / CHIP.BIN / share / htmledit / bashhtml / bashhtml.exe / %AppDir% / scripts / Break Out Of Frames.txt < prev    next >
Encoding:
Text File  |  2003-09-01  |  337 b   |  15 lines

  1. [DESCRIPTION]Creates a button which will close the browser window when clicked.[/DESCRIPTION]
  2.  
  3. [HEAD CODE]<script language="JavaScript">
  4. <!--
  5. function closeIt() {
  6.   close();
  7. }
  8. // -->
  9. </script>[/HEAD CODE]
  10.  
  11. [BODY CODE]<form>
  12. <input type="button" value="Close Window" onClick="closeIt()">
  13. </form>[/BODY CODE]
  14.  
  15. [NOTES][/NOTES]